al13ntown/db/migrate/20260824063846_create_blogs.rb

11 lines
173 B
Ruby
Raw Permalink Normal View History

2026-08-24 20:12:41 +00:00
class CreateBlogs < ActiveRecord::Migration[8.1]
def change
create_table :blogs do |t|
t.string :title
t.text :topic
t.timestamps
end
end
end