aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20120126110946_create_referentials.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20120126110946_create_referentials.rb')
-rw-r--r--db/migrate/20120126110946_create_referentials.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/db/migrate/20120126110946_create_referentials.rb b/db/migrate/20120126110946_create_referentials.rb
new file mode 100644
index 000000000..64af40135
--- /dev/null
+++ b/db/migrate/20120126110946_create_referentials.rb
@@ -0,0 +1,10 @@
+class CreateReferentials < ActiveRecord::Migration
+ def change
+ create_table :referentials do |t|
+ t.string :name
+ t.string :slug
+
+ t.timestamps
+ end
+ end
+end