final/db/migrate/20151204093641_create_blog_...

11 lines
211 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|
2015-12-09 05:05:24 +08:00
t.string :name
t.string :blog_title
t.string :email
t.text :description
2015-12-07 04:43:35 +08:00
end
end
end