diff options
Diffstat (limited to 'spec/models/snippet_spec.rb')
-rw-r--r-- | spec/models/snippet_spec.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/spec/models/snippet_spec.rb b/spec/models/snippet_spec.rb index 037287a9928..9b4aaa13f74 100644 --- a/spec/models/snippet_spec.rb +++ b/spec/models/snippet_spec.rb @@ -18,13 +18,13 @@ end # # Table name: snippets # -# id :integer not null, primary key +# id :integer(4) not null, primary key # title :string(255) # content :text -# author_id :integer not null -# project_id :integer not null -# created_at :datetime -# updated_at :datetime +# author_id :integer(4) not null +# project_id :integer(4) not null +# created_at :datetime not null +# updated_at :datetime not null # file_name :string(255) # expires_at :datetime # |