bievre_reno_app/db/migrate/20160120110331_create_article_authors.rb
Caroline Girard d727d313b7 initial
2018-09-11 13:49:55 +02:00

12 lines
229 B
Ruby

class CreateArticleAuthors < ActiveRecord::Migration
def change
create_table :article_authors do |t|
t.string :name
t.text :description
t.boolean :enabled
t.timestamps null: false
end
end
end