class CreatePosts < ActiveRecord::Migration[5.0]
  def change
    create_table :posts do |t|
      t.string :title,      default: ""
      t.string :slug,       default: ""
      t.string :img_slug,   default: ""
      t.string :cover,      default: ""
      t.string :category,   default: ""

      t.text :description
      t.text :body

      t.references :user, foreign_key: true

      t.timestamps
    end
  end
end