Sha256: 70a92a2ae2c86aa15fca8c313b8fcc9096425f663ad6483b4c2cd56cbf5bcd78
Contents?: true
Size: 298 Bytes
Versions: 7
Compression:
Stored size: 298 Bytes
Contents
class CreateActionLabels < ActiveRecord::Migration def change create_table :action_labels do |t| t.string :name t.belongs_to :feature, index: true t.boolean :active t.timestamps null: false end add_foreign_key :action_labels, :features end end
Version data entries
7 entries across 7 versions & 1 rubygems