Skip to content

Commit 938884a

Browse files
cosmetics
1 parent 4a8e60c commit 938884a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

test/schema.rb

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22

33
ActiveRecord::Schema.define version: 0 do
44
create_table 'users', force: true do |t|
5-
t.column 'name', :string
6-
t.column 'language', :string
5+
t.string 'name'
6+
t.string 'language'
77
end
88

99
create_table 'issues', force: true do |t|
1010
t.integer 'project_id'
11-
t.column 'subject', :string
12-
t.column 'description', :string
13-
t.column 'closed', :boolean
14-
t.column 'user_id', :integer
15-
t.column 'author_id', :integer
11+
t.string 'subject'
12+
t.string 'description'
13+
t.boolean 'closed'
14+
t.integer 'user_id'
15+
t.integer 'author_id'
1616
end
1717

1818
create_table 'projects', force: true do |t|

0 commit comments

Comments
 (0)