Commit edd2143d35d439e203d53b5e413f71e9f02db139
1 parent
3cb663f5
Exists in
master
and in
4 other branches
Namespaces.owner_id can be null
Showing
2 changed files
with
11 additions
and
2 deletions
Show diff stats
db/schema.rb
... | ... | @@ -11,7 +11,7 @@ |
11 | 11 | # |
12 | 12 | # It's strongly recommended to check this file into your version control system. |
13 | 13 | |
14 | -ActiveRecord::Schema.define(:version => 20130909132950) do | |
14 | +ActiveRecord::Schema.define(:version => 20130926081215) do | |
15 | 15 | |
16 | 16 | create_table "deploy_keys_projects", :force => true do |t| |
17 | 17 | t.integer "deploy_key_id", :null => false |
... | ... | @@ -129,7 +129,7 @@ ActiveRecord::Schema.define(:version => 20130909132950) do |
129 | 129 | create_table "namespaces", :force => true do |t| |
130 | 130 | t.string "name", :null => false |
131 | 131 | t.string "path", :null => false |
132 | - t.integer "owner_id", :null => false | |
132 | + t.integer "owner_id" | |
133 | 133 | t.datetime "created_at", :null => false |
134 | 134 | t.datetime "updated_at", :null => false |
135 | 135 | t.string "type" | ... | ... |