Browse Source

The working basics

development
Godwin 10 years ago
parent
commit
76bf7164e8
  1. 13
      db/migrate/20140308173326_create_translations_again.rb

13
db/migrate/20140308173326_create_translations_again.rb

@ -0,0 +1,13 @@
class CreateTranslationsAgain < ActiveRecord::Migration
def change
create_table :translations do |t|
t.string :locale
t.string :key
t.text :value
t.text :interpolations
t.boolean :is_proc, :default => false
t.timestamps
end
end
end
Loading…
Cancel
Save