This commit is contained in:
r888888888
2014-06-12 20:12:09 -07:00
parent 9aa1f65eb5
commit 7b97ca192c
18 changed files with 289 additions and 12 deletions

View File

@@ -0,0 +1,12 @@
class CreateBulkUpdateRequests < ActiveRecord::Migration
def change
create_table :bulk_update_requests do |t|
t.integer :user_id, :null => false
t.integer :forum_topic_id
t.text :script, :null => false
t.string :status, :null => false, :default => "pending"
t.timestamps
end
end
end