thirteen-tien-len/db/migrate/20231114160910_create_microposts.rb

10 lines
215 B
Ruby

class CreateMicroposts < ActiveRecord::Migration[6.1]
def change
create_table :microposts do |t|
t.text :content
t.references :micropostable, polymorphic: true
t.timestamps
end
end
end