al13ntown/db/migrate/20260824064020_create_miniposts.rb

10 lines
158 B
Ruby
Raw Permalink Normal View History

2026-08-24 20:12:41 +00:00
class CreateMiniposts < ActiveRecord::Migration[8.1]
def change
create_table :miniposts do |t|
t.text :body
t.timestamps
end
end
end