Sha256: 29d5124a9879bac273bbcf6fed69331111a486d6ae98d598dc4640e40c02bbfa

Contents?: true

Size: 471 Bytes

Versions: 4

Compression:

Stored size: 471 Bytes

Contents

class CreateArchangelCollections < ActiveRecord::Migration[5.1]
  def change
    create_table :archangel_collections do |t|
      t.integer :site_id, null: false
      t.string :name
      t.string :slug
      t.datetime :deleted_at

      t.timestamps
    end

    add_index :archangel_collections, :deleted_at
    add_index :archangel_collections, :name
    add_index :archangel_collections, :site_id
    add_index :archangel_collections, :slug, unique: true
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
archangel-0.0.5 db/migrate/20171006194044_create_archangel_collections.rb
archangel-0.0.4 db/migrate/20171006194044_create_archangel_collections.rb
archangel-0.0.3 db/migrate/20171006194044_create_archangel_collections.rb
archangel-0.0.2 db/migrate/20171006194044_create_archangel_collections.rb