Diff
Deleted: branches/apace/db/migrate/075_create_algorithms.rb (2259 => 2260)
--- branches/apace/db/migrate/075_create_algorithms.rb 2009-08-03 16:12:50 UTC (rev 2259)
+++ branches/apace/db/migrate/075_create_algorithms.rb 2009-08-04 11:59:20 UTC (rev 2260)
@@ -1,24 +0,0 @@
-# myExperiment: db/migrate/074_create_algorithms.rb
-#
-# Copyright (c) 2009 University of Manchester and the University of Southampton.
-# See license.txt for details.
-
-class CreateAlgorithms < ActiveRecord::Migration
- def self.up
- create_table :algorithms do |t|
- t.column :contributor_id, :integer
- t.column :contributor_type, :string
- t.column :title, :string
- t.column :description, :text
- t.column :description_html, :text
- t.column :license, :string
- t.column :url, :text
- t.column :created_at, :datetime
- t.column :updated_at, :datetime
- end
- end
-
- def self.down
- drop_table :algorithms
- end
-end
Deleted: branches/apace/db/migrate/076_create_apps.rb (2259 => 2260)
--- branches/apace/db/migrate/076_create_apps.rb 2009-08-03 16:12:50 UTC (rev 2259)
+++ branches/apace/db/migrate/076_create_apps.rb 2009-08-04 11:59:20 UTC (rev 2260)
@@ -1,23 +0,0 @@
-# myExperiment: db/migrate/075_create_apps.rb
-#
-# Copyright (c) 2009 University of Manchester and the University of Southampton.
-# See license.txt for details.
-
-class CreateApps < ActiveRecord::Migration
- def self.up
- create_table :apps do |t|
- t.column :contributor_id, :integer
- t.column :contributor_type, :string
- t.column :title, :string
- t.column :description, :text
- t.column :description_html, :text
- t.column :license, :string
- t.column :created_at, :datetime
- t.column :updated_at, :datetime
- end
- end
-
- def self.down
- drop_table :apps
- end
-end
Deleted: branches/apace/db/migrate/077_create_algorithm_instances.rb (2259 => 2260)
--- branches/apace/db/migrate/077_create_algorithm_instances.rb 2009-08-03 16:12:50 UTC (rev 2259)
+++ branches/apace/db/migrate/077_create_algorithm_instances.rb 2009-08-04 11:59:20 UTC (rev 2260)
@@ -1,18 +0,0 @@
-# myExperiment: db/migrate/076_create_algorithm_instances.rb
-#
-# Copyright (c) 2009 University of Manchester and the University of Southampton.
-# See license.txt for details.
-
-class CreateAlgorithmInstances < ActiveRecord::Migration
- def self.up
- create_table :algorithm_instances do |t|
- t.column :algorithm_id, :integer
- t.column :app_id, :integer
- end
- end
-
- def self.down
- drop_table :algorithm_instances
- end
-end
-
Copied: branches/apace/db/migrate/082_create_algorithms.rb (from rev 2225, branches/apace/db/migrate/075_create_algorithms.rb) (0 => 2260)
--- branches/apace/db/migrate/082_create_algorithms.rb (rev 0)
+++ branches/apace/db/migrate/082_create_algorithms.rb 2009-08-04 11:59:20 UTC (rev 2260)
@@ -0,0 +1,24 @@
+# myExperiment: db/migrate/074_create_algorithms.rb
+#
+# Copyright (c) 2009 University of Manchester and the University of Southampton.
+# See license.txt for details.
+
+class CreateAlgorithms < ActiveRecord::Migration
+ def self.up
+ create_table :algorithms do |t|
+ t.column :contributor_id, :integer
+ t.column :contributor_type, :string
+ t.column :title, :string
+ t.column :description, :text
+ t.column :description_html, :text
+ t.column :license, :string
+ t.column :url, :text
+ t.column :created_at, :datetime
+ t.column :updated_at, :datetime
+ end
+ end
+
+ def self.down
+ drop_table :algorithms
+ end
+end
Copied: branches/apace/db/migrate/083_create_apps.rb (from rev 2225, branches/apace/db/migrate/076_create_apps.rb) (0 => 2260)
--- branches/apace/db/migrate/083_create_apps.rb (rev 0)
+++ branches/apace/db/migrate/083_create_apps.rb 2009-08-04 11:59:20 UTC (rev 2260)
@@ -0,0 +1,23 @@
+# myExperiment: db/migrate/075_create_apps.rb
+#
+# Copyright (c) 2009 University of Manchester and the University of Southampton.
+# See license.txt for details.
+
+class CreateApps < ActiveRecord::Migration
+ def self.up
+ create_table :apps do |t|
+ t.column :contributor_id, :integer
+ t.column :contributor_type, :string
+ t.column :title, :string
+ t.column :description, :text
+ t.column :description_html, :text
+ t.column :license, :string
+ t.column :created_at, :datetime
+ t.column :updated_at, :datetime
+ end
+ end
+
+ def self.down
+ drop_table :apps
+ end
+end
Copied: branches/apace/db/migrate/084_create_algorithm_instances.rb (from rev 2225, branches/apace/db/migrate/077_create_algorithm_instances.rb) (0 => 2260)
--- branches/apace/db/migrate/084_create_algorithm_instances.rb (rev 0)
+++ branches/apace/db/migrate/084_create_algorithm_instances.rb 2009-08-04 11:59:20 UTC (rev 2260)
@@ -0,0 +1,18 @@
+# myExperiment: db/migrate/076_create_algorithm_instances.rb
+#
+# Copyright (c) 2009 University of Manchester and the University of Southampton.
+# See license.txt for details.
+
+class CreateAlgorithmInstances < ActiveRecord::Migration
+ def self.up
+ create_table :algorithm_instances do |t|
+ t.column :algorithm_id, :integer
+ t.column :app_id, :integer
+ end
+ end
+
+ def self.down
+ drop_table :algorithm_instances
+ end
+end
+