blob: a8d7d64e37681873ebf9d9765c95e5c828272de9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
class CreateSoftkeys < ActiveRecord::Migration
def self.up
create_table :softkeys do |t|
t.integer :phone_id
t.string :name
t.string :function
t.string :number
t.string :label
t.integer :position
t.timestamps
end
end
def self.down
drop_table :softkeys
end
end
|