diff options
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/bookmark.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/models/bookmark.rb b/app/models/bookmark.rb index 916261a17..01dc48ee7 100644 --- a/app/models/bookmark.rb +++ b/app/models/bookmark.rb @@ -3,11 +3,11 @@ # # Table name: bookmarks # -# id :bigint(8) not null, primary key -# account_id :bigint(8) not null -# status_id :bigint(8) not null +# id :integer not null, primary key # created_at :datetime not null # updated_at :datetime not null +# account_id :integer not null +# status_id :integer not null # class Bookmark < ApplicationRecord |