diff options
author | Akihiko Odaki <akihiko.odaki.4i@stu.hosei.ac.jp> | 2017-12-12 12:11:17 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-12-12 04:11:17 +0100 |
commit | 14c4a33cd9bfc1212cb362897272e5ea7d1529e5 (patch) | |
tree | 0b28579dfb137e529c7f7c962236941b3e341b22 /app | |
parent | 30d2ea03b05ed3efb4ad8f21cab343108d3699ac (diff) |
Change account_id non-nullable in lists (#5979)
Diffstat (limited to 'app')
-rw-r--r-- | app/models/list.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/list.rb b/app/models/list.rb index f45e4973d..be85c3b87 100644 --- a/app/models/list.rb +++ b/app/models/list.rb @@ -4,7 +4,7 @@ # Table name: lists # # id :integer not null, primary key -# account_id :integer +# account_id :integer not null # title :string default(""), not null # created_at :datetime not null # updated_at :datetime not null |