impressionist/spec/dummy/db/migrate/20110201153144_create_artic...

14 lines
207 B
Ruby
Raw Normal View History

class CreateArticles < ActiveRecord::Migration[4.2]
2011-02-04 04:13:41 +00:00
def self.up
create_table :articles do |t|
t.string :name
t.timestamps
end
end
def self.down
drop_table :articles
end
end