blob: 290379c765011c0e172872ce50002a4baab32b5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
class CreateTenants < ActiveRecord::Migration
def self.up
create_table :tenants do |t|
t.string :name
t.text :description
t.string :state
t.integer :position
t.timestamps
end
end
def self.down
drop_table :tenants
end
end
|