diff options
author | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-04-08 18:06:36 -0300 |
---|---|---|
committer | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-04-08 18:46:46 -0300 |
commit | 99067a505ca62dc069189118d7d4c4e91de83917 (patch) | |
tree | d586838da6b1268167ac38c258c93d317412233e /db | |
parent | 47c8b7f3037c3e464e34d6f978a27e591f09e687 (diff) | |
download | gitlab-ce-99067a505ca62dc069189118d7d4c4e91de83917.tar.gz |
Fix schema.rb
Diffstat (limited to 'db')
-rw-r--r-- | db/schema.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/db/schema.rb b/db/schema.rb index 4c7673511fb..a66274dc5a1 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: 20160331133914) do +ActiveRecord::Schema.define(version: 20160331223143) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -799,9 +799,9 @@ ActiveRecord::Schema.define(version: 20160331133914) do t.string "type" t.string "title" t.integer "project_id" - t.datetime "created_at" - t.datetime "updated_at" - t.boolean "active", default: false, null: false + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.boolean "active", null: false t.text "properties" t.boolean "template", default: false t.boolean "push_events", default: true |