final/db/migrate/20151204093641_create_blog_...

9 lines
147 B
Ruby
Raw Normal View History

2015-12-07 04:43:35 +08:00
class CreateBlogInfos < ActiveRecord::Migration
def change
create_table :blog_infos do |t|
t.timestamps null: false
end
end
end