chaix_app/db/migrate/20160120110331_create_article_authors.rb
Nicolas Bally 6a8e471b82 intial
2019-02-01 13:53:57 +01: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