fixesg
This commit is contained in:
9
db/migrate/20130114154400_add_queue_to_delayed_jobs.rb
Normal file
9
db/migrate/20130114154400_add_queue_to_delayed_jobs.rb
Normal file
@@ -0,0 +1,9 @@
|
||||
class AddQueueToDelayedJobs < ActiveRecord::Migration
|
||||
def self.up
|
||||
add_column :delayed_jobs, :queue, :string
|
||||
end
|
||||
|
||||
def self.down
|
||||
remove_column :delayed_jobs, :queue
|
||||
end
|
||||
end
|
||||
@@ -722,7 +722,8 @@ CREATE TABLE delayed_jobs (
|
||||
failed_at timestamp without time zone,
|
||||
locked_by character varying(255),
|
||||
created_at timestamp without time zone NOT NULL,
|
||||
updated_at timestamp without time zone NOT NULL
|
||||
updated_at timestamp without time zone NOT NULL,
|
||||
queue character varying(255)
|
||||
);
|
||||
|
||||
|
||||
@@ -6172,4 +6173,6 @@ INSERT INTO schema_migrations (version) VALUES ('20110815233456');
|
||||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20111101212358');
|
||||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20130106210658');
|
||||
INSERT INTO schema_migrations (version) VALUES ('20130106210658');
|
||||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20130114154400');
|
||||
Reference in New Issue
Block a user