aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20160926134345_add_started_at_to_line_referential_syncs.rb5
-rw-r--r--db/migrate/20160926134813_add_ended_at_to_line_referential_syncs.rb5
-rw-r--r--db/migrate/20160926134852_add_status_to_line_referential_syncs.rb5
3 files changed, 15 insertions, 0 deletions
diff --git a/db/migrate/20160926134345_add_started_at_to_line_referential_syncs.rb b/db/migrate/20160926134345_add_started_at_to_line_referential_syncs.rb
new file mode 100644
index 000000000..9b83bb55c
--- /dev/null
+++ b/db/migrate/20160926134345_add_started_at_to_line_referential_syncs.rb
@@ -0,0 +1,5 @@
+class AddStartedAtToLineReferentialSyncs < ActiveRecord::Migration
+ def change
+ add_column :line_referential_syncs, :started_at, :datetime
+ end
+end
diff --git a/db/migrate/20160926134813_add_ended_at_to_line_referential_syncs.rb b/db/migrate/20160926134813_add_ended_at_to_line_referential_syncs.rb
new file mode 100644
index 000000000..3d8c654a8
--- /dev/null
+++ b/db/migrate/20160926134813_add_ended_at_to_line_referential_syncs.rb
@@ -0,0 +1,5 @@
+class AddEndedAtToLineReferentialSyncs < ActiveRecord::Migration
+ def change
+ add_column :line_referential_syncs, :ended_at, :datetime
+ end
+end
diff --git a/db/migrate/20160926134852_add_status_to_line_referential_syncs.rb b/db/migrate/20160926134852_add_status_to_line_referential_syncs.rb
new file mode 100644
index 000000000..fb2bfc769
--- /dev/null
+++ b/db/migrate/20160926134852_add_status_to_line_referential_syncs.rb
@@ -0,0 +1,5 @@
+class AddStatusToLineReferentialSyncs < ActiveRecord::Migration
+ def change
+ add_column :line_referential_syncs, :status, :string
+ end
+end