summaryrefslogtreecommitdiff
path: root/db/migrate/20120617065247_create_gs_cluster_sync_log_entries.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20120617065247_create_gs_cluster_sync_log_entries.rb')
-rw-r--r--db/migrate/20120617065247_create_gs_cluster_sync_log_entries.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/db/migrate/20120617065247_create_gs_cluster_sync_log_entries.rb b/db/migrate/20120617065247_create_gs_cluster_sync_log_entries.rb
new file mode 100644
index 0000000..83d6a5b
--- /dev/null
+++ b/db/migrate/20120617065247_create_gs_cluster_sync_log_entries.rb
@@ -0,0 +1,17 @@
+class CreateGsClusterSyncLogEntries < ActiveRecord::Migration
+ def self.up
+ create_table :gs_cluster_sync_log_entries do |t|
+ t.integer :gs_node_id
+ t.string :class_name
+ t.string :action
+ t.text :content
+ t.string :status
+ t.string :history
+ t.timestamps
+ end
+ end
+
+ def self.down
+ drop_table :gs_cluster_sync_log_entries
+ end
+end