RBOnRails-learning/db/migrate/20240807110147_create_articles.rb
2024-08-07 16:43:33 +02:00

11 lines
178 B
Ruby

class CreateArticles < ActiveRecord::Migration[7.1]
def change
create_table :articles do |t|
t.string :title
t.text :body
t.timestamps
end
end
end