Sha256: 12a4aef9f43f698e5a880a45e970aaff140512e444df3a7975644d2f05dbcb99
Contents?: true
Size: 470 Bytes
Versions: 28
Compression:
Stored size: 470 Bytes
Contents
class CreateNetzkeComponentStates < ActiveRecord::Migration def self.up create_table :netzke_component_states do |t| t.string :component t.integer :user_id t.integer :role_id t.text :value t.timestamps end add_index :netzke_component_states, :component add_index :netzke_component_states, :user_id add_index :netzke_component_states, :role_id end def self.down drop_table :netzke_component_states end end
Version data entries
28 entries across 28 versions & 4 rubygems