summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
authorMarin Jankovski <maxlazio@gmail.com>2015-02-11 09:47:21 -0800
committerMarin Jankovski <maxlazio@gmail.com>2015-02-11 09:47:21 -0800
commit09d3d351a1a80032c4e9bf185a15ff95819a4da0 (patch)
tree868d4e9fc462cb8f005161d578f14fdf12cb5c21 /db/schema.rb
parent55153660647741af22be2278d292de8a54bc0402 (diff)
downloadgitlab-ce-09d3d351a1a80032c4e9bf185a15ff95819a4da0.tar.gz
Remove not null constraint on project_id in services.
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/db/schema.rb b/db/schema.rb
index d9f954d5c6c..c41a89af618 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: 20150211172122) do
+ActiveRecord::Schema.define(version: 20150211174341) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -360,7 +360,7 @@ ActiveRecord::Schema.define(version: 20150211172122) do
create_table "services", force: true do |t|
t.string "type"
t.string "title"
- t.integer "project_id", null: false
+ t.integer "project_id"
t.datetime "created_at"
t.datetime "updated_at"
t.boolean "active", default: false, null: false