heylium_app/db/migrate/20160120110331_create_article_authors.rb
Nicolas Bally 8e18de4077 initial
2016-08-03 00:22:29 +02:00

12 lines
229 B
Ruby
Executable File

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