pushtype/push_type

View on GitHub
core/db/migrate/20141117204630_create_push_type_nodes.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreatePushTypeNodes < ActiveRecord::Migration[4.2]
  def change
    enable_extension 'uuid-ossp' unless extension_enabled?('uuid-ossp')
    create_table :push_type_nodes, id: :uuid, default: 'uuid_generate_v4()' do |t|
      t.string    :type
      t.string    :title
      t.string    :slug
      t.jsonb     :field_store

      t.uuid      :parent_id
      t.integer   :sort_order

      t.integer   :status
      t.datetime  :published_at
      t.datetime  :published_to

      t.uuid      :creator_id
      t.uuid      :updater_id

      t.timestamps null: false
      t.datetime  :deleted_at
    end
  end
end