Sha256: 50697311011e60ff02a8ebee84d9946359eaff8e3654d214196c28fd55ac8d53

Contents?: true

Size: 272 Bytes

Versions: 6

Compression:

Stored size: 272 Bytes

Contents

class CreateGreenFlagFeatures < ActiveRecord::Migration
  def change
    create_table :green_flag_features do |t|
      t.string :code, null: false
      t.string :description
      t.timestamps
    end
    add_index :green_flag_features, :code, :unique => true
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
green_flag-0.4.0 db/migrate/20140502221059_create_green_flag_features.rb
green_flag-0.3.0 db/migrate/20140502221059_create_green_flag_features.rb
green_flag-0.2.0 db/migrate/20140502221059_create_green_flag_features.rb
green_flag-0.1.2 db/migrate/20140502221059_create_green_flag_features.rb
green_flag-0.1.1 db/migrate/20140502221059_create_green_flag_features.rb
green_flag-0.1.0 db/migrate/20140502221059_create_green_flag_features.rb