al13ntown/db/migrate/20260824063957_create_miniblogs.rb

10 lines
159 B
Ruby
Raw Permalink Normal View History

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