thirteen-tien-len/db/migrate/20231114160910_create_microposts.rb
2023-11-15 12:30:47 +00:00

12 lines
271 B
Ruby

class CreateMicroposts < ActiveRecord::Migration[6.1]
def change
create_table :microposts do |t|
t.text :content
t.references :user, null: false, foreign_key: true
t.timestamps
end
add_index :microposts, [:user_id, :created_at]
end
end