class CreatePosts < ActiveRecord::Migration
  def change
    create_table :posts do |t|
      t.string :title
      t.text :content
      t.date :published_at
      t.boolean :is_published

      t.timestamps null: false
    end
  end
end