al13ntown/db/migrate/20260824064020_create_miniposts.rb
2026-08-24 20:12:41 +00:00

9 lines
158 B
Ruby

class CreateMiniposts < ActiveRecord::Migration[8.1]
def change
create_table :miniposts do |t|
t.text :body
t.timestamps
end
end
end