Sha256: 1372040a5f1e737e4536e293e76180795704b73f74f94f073e899bbbb553248b
Contents?: true
Size: 306 Bytes
Versions: 14
Compression:
Stored size: 306 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, default: true t.timestamps null: false end add_foreign_key :action_labels, :features end end
Version data entries
14 entries across 7 versions & 1 rubygems