Sha256: 295f2be21d63bac5871da366afe26b4201a29651cc6dd955b22260b84e0b6794

Contents?: true

Size: 228 Bytes

Versions: 1

Compression:

Stored size: 228 Bytes

Contents

class CreatePages < ActiveRecord::Migration[5.1]
  def change
    create_table :pages do |t|
      t.string :title
      t.text :body_markdown
      t.text :body_html
      t.integer :order

      t.timestamps
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
playbook_ui-2.5.0 db/migrate/20171025050930_create_pages.rb