guoren/db/migrate/20161129020736_create_micro...

13 lines
232 B
Ruby
Raw Permalink Normal View History

2016-12-22 20:05:38 +08:00
class CreateMicroPosts < ActiveRecord::Migration[5.0]
def change
create_table :micro_posts do |t|
t.text :content
t.text :pic
t.datetime :post_time
t.integer :type
t.timestamps
end
end
end