thirteen-tien-len/db/migrate/20231114160910_create_microposts.rb
2023-11-15 16:11:32 +00:00

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