fixes #404
This commit is contained in:
5
db/migrate/20130219184743_add_parent_id_to_uploads.rb
Normal file
5
db/migrate/20130219184743_add_parent_id_to_uploads.rb
Normal file
@@ -0,0 +1,5 @@
|
||||
class AddParentIdToUploads < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :uploads, :parent_id, :integer
|
||||
end
|
||||
end
|
||||
@@ -2476,7 +2476,8 @@ CREATE TABLE uploads (
|
||||
md5_confirmation character varying(255),
|
||||
created_at timestamp without time zone NOT NULL,
|
||||
updated_at timestamp without time zone NOT NULL,
|
||||
server text
|
||||
server text,
|
||||
parent_id integer
|
||||
);
|
||||
|
||||
|
||||
@@ -6177,4 +6178,6 @@ INSERT INTO schema_migrations (version) VALUES ('20130106210658');
|
||||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20130114154400');
|
||||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20130219171111');
|
||||
INSERT INTO schema_migrations (version) VALUES ('20130219171111');
|
||||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20130219184743');
|
||||
Reference in New Issue
Block a user