blob: b671375e9f86696df513c634a7d06e10a7ebe1bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
class CreateRingtones < ActiveRecord::Migration
def self.up
create_table :ringtones do |t|
t.string :ringtoneable_type
t.integer :ringtoneable_id
t.string :audio
t.integer :bellcore_id
t.timestamps
end
end
def self.down
drop_table :ringtones
end
end
|