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

10 lines
173 B
Ruby

class CreateBlogs < ActiveRecord::Migration[8.1]
def change
create_table :blogs do |t|
t.string :title
t.text :topic
t.timestamps
end
end
end