class CreateTablePosts < ActiveRecord::Migration[5.2] | |
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 | |
class CreateTablePosts < ActiveRecord::Migration[5.2] | |
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 | |