The working basics

This commit is contained in:
Godwin 2014-03-09 15:47:42 -06:00
parent 91b427ba58
commit 1a5af29d14

View File

@ -1,5 +1,5 @@
class CreateTranslations < ActiveRecord::Migration class CreateTranslations < ActiveRecord::Migration
def self.up def change
create_table :translations do |t| create_table :translations do |t|
t.string :locale t.string :locale
t.string :key t.string :key
@ -10,8 +10,4 @@ class CreateTranslations < ActiveRecord::Migration
t.timestamps t.timestamps
end end
end end
def self.down
drop_table :translations
end
end end