Sha256: 34f6d59caa422fed431b532392de871913977a8c72234552aa3cb48a065c7e07
Contents?: true
Size: 285 Bytes
Versions: 1
Compression:
Stored size: 285 Bytes
Contents
class CreateTranslations < ActiveRecord::Migration[5.1] def change create_table :translations do |t| t.string :key, null: false t.text :value, null: false t.text :description t.timestamps end add_index :translations, :key, unique: true end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
forest_cms-0.98.1 | db/migrate/20170826173346_create_translations.rb |