Sha256: d222c153af7f84ae069d35c30a897f94e535b88687af5dd941fc6deb65a0264e

Contents?: true

Size: 229 Bytes

Versions: 3

Compression:

Stored size: 229 Bytes

Contents

class CreatePosts < ActiveRecord::Migration
  def change
    create_table :posts do |t|
      t.string :title, null: false
      t.text :body, null: false
      t.string :status, null: false

      t.timestamps
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
active_admin-state_machine-1.0.0.pre1 spec/dummy/db/migrate/20130817005638_create_posts.rb
active_admin-state_machine-0.1.1 spec/dummy/db/migrate/20130817005638_create_posts.rb
active_admin-state_machine-0.1.0 spec/dummy/db/migrate/20130817005638_create_posts.rb