fixes #2190
This commit is contained in:
12
db/migrate/20140613004559_create_bulk_update_requests.rb
Normal file
12
db/migrate/20140613004559_create_bulk_update_requests.rb
Normal 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
|
||||
Reference in New Issue
Block a user