Files
baclight/db/migrate/20210926221100_create_articles.rb
T
2021-12-16 14:32:18 -08:00

11 lines
181 B
Ruby

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