Sha256: 06dd481519780744a2181117c49719fdf086743678783ab8f3c0f8944d126bcd
Contents?: true
Size: 499 Bytes
Versions: 6
Compression:
Stored size: 499 Bytes
Contents
class CreateArchangelSites < ActiveRecord::Migration[5.1] def change create_table :archangel_sites do |t| t.string :name, null: false, default: "Archangel" t.string :theme t.string :locale, null: false, default: "en" t.string :logo t.string :favicon t.string :meta_keywords t.string :meta_description t.datetime :deleted_at t.timestamps end add_index :archangel_sites, :deleted_at add_index :archangel_sites, :name end end
Version data entries
6 entries across 6 versions & 1 rubygems