blob: e20014b291c290aeb6f976bc036d7c5a2abbc923 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
class CreatePhoneNumberRanges < ActiveRecord::Migration
def self.up
create_table :phone_number_ranges do |t|
t.integer :tenant_id
t.string :name
t.text :description
t.timestamps
end
end
def self.down
drop_table :phone_number_ranges
end
end
|