rails-refresher/db/migrate/20240704175814_create_articles.rb

11 lines
178 B
Ruby
Raw Permalink Normal View History

2024-07-05 01:00:08 +00:00
class CreateArticles < ActiveRecord::Migration[7.1]
def change
create_table :articles do |t|
t.string :title
t.text :body
t.timestamps
end
end
end