blob: 29a3a9f22b1c01baab4aeec45870fd0b2c19426d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
class CreateInfoRequests < ActiveRecord::Migration
def self.up
create_table :info_requests do |t|
t.column :title, :text
t.column :user_id, :integer
end
end
def self.down
drop_table :info_requests
end
end
|