Sha256: ef4a32be36da9aebe47a2d5eddda33796c98f0e7c6561a93a0e423734bb6e3e0

Contents?: true

Size: 616 Bytes

Versions: 39

Compression:

Stored size: 616 Bytes

Contents

class CreatePushTypeNodes < ActiveRecord::Migration
  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

Version data entries

39 entries across 39 versions & 1 rubygems

Version Path
push_type_core-0.10.4 db/migrate/20141117204630_create_push_type_nodes.rb
push_type_core-0.10.3 db/migrate/20141117204630_create_push_type_nodes.rb
push_type_core-0.10.2 db/migrate/20141117204630_create_push_type_nodes.rb
push_type_core-0.10.1 db/migrate/20141117204630_create_push_type_nodes.rb
push_type_core-0.10.0 db/migrate/20141117204630_create_push_type_nodes.rb
push_type_core-0.10.0.beta.5 db/migrate/20141117204630_create_push_type_nodes.rb
push_type_core-0.10.0.beta.3 db/migrate/20141117204630_create_push_type_nodes.rb
push_type_core-0.9.5 db/migrate/20141117204630_create_push_type_nodes.rb
push_type_core-0.9.3 db/migrate/20141117204630_create_push_type_nodes.rb
push_type_core-0.9.2 db/migrate/20141117204630_create_push_type_nodes.rb
push_type_core-0.9.1 db/migrate/20141117204630_create_push_type_nodes.rb
push_type_core-0.9.0 db/migrate/20141117204630_create_push_type_nodes.rb
push_type_core-0.9.0.beta.4 db/migrate/20141117204630_create_push_type_nodes.rb
push_type_core-0.9.0.beta.3 db/migrate/20141117204630_create_push_type_nodes.rb
push_type_core-0.9.0.beta.2 db/migrate/20141117204630_create_push_type_nodes.rb
push_type_core-0.8.2 db/migrate/20141117204630_create_push_type_nodes.rb
push_type_core-0.8.1 db/migrate/20141117204630_create_push_type_nodes.rb
push_type_core-0.8.0 db/migrate/20141117204630_create_push_type_nodes.rb
push_type_core-0.8.0.beta.3 db/migrate/20141117204630_create_push_type_nodes.rb
push_type_core-0.8.0.beta.2 db/migrate/20141117204630_create_push_type_nodes.rb