File size: 236 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 |
class CreatePosts < ActiveRecord::Migration[5.1]
def change
create_table :posts do |t|
t.integer :author_id, null: false
t.text :body, null: false
t.timestamps
end
add_index :posts, :author_id
end
end
|