Sha256: 05f855d6b9193716001dfd3feb52e4104f6437cc96d2f9026e19c745b766988d
Contents?: true
Size: 342 Bytes
Versions: 5
Compression:
Stored size: 342 Bytes
Contents
# encoding: UTF-8 class CreateSurveyTranslations < ActiveRecord::Migration def self.up create_table :survey_translations do |t| # Content t.integer :survey_id # Reference t.string :locale t.text :translation t.timestamps end end def self.down drop_table :survey_translations end end
Version data entries
5 entries across 5 versions & 3 rubygems