summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2015-07-06 12:16:30 +0200
committerKamil Trzcinski <ayufan@ayufan.eu>2015-07-06 12:55:18 +0200
commitc9b153e7de2a3a7158cd8ea766ed0a65dd248cc9 (patch)
tree72aee72a5d7944bb02dc29f1db66bafd40b4fd04
parent586d68042f66781b05f26ea44b00372d0d573c14 (diff)
downloadgitlab-ci-c9b153e7de2a3a7158cd8ea766ed0a65dd248cc9.tar.gz
Fix db/schema
-rw-r--r--db/schema.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/db/schema.rb b/db/schema.rb
index b1eaef6..f3e9e40 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
-ActiveRecord::Schema.define(version: 20150616001155) do
+ActiveRecord::Schema.define(version: 20150706103229) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -175,7 +175,7 @@ ActiveRecord::Schema.define(version: 20150616001155) do
add_index "tags", ["name"], name: "index_tags_on_name", unique: true, using: :btree
create_table "variables", force: true do |t|
- t.integer "project_id", null: false
+ t.integer "project_id", null: false
t.string "key"
t.text "value"
end