Sha256: 879eb05650f9e4ebd839c722ca2f40dae37f6ceee17abfc20e5430b12e8d3046

Contents?: true

Size: 418 Bytes

Versions: 3

Compression:

Stored size: 418 Bytes

Contents

class CreateStatixiteSites < ActiveRecord::Migration
  def change
    create_table :statixite_sites do |t|
      t.string :site_name
      t.string :domain_name
      t.string :template
      t.json   :settings, default: {}, null: false
      t.string :build_option
      t.string :template_repo
      t.string :hostname
      t.timestamps
    end
    add_index :statixite_sites, :site_name, :unique => true
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
statixite-1.0.2 db/migrate/20150525171543_create_statixite_sites.rb
statixite-1.0.1 db/migrate/20150525171543_create_statixite_sites.rb
statixite-1.0.0 db/migrate/20150525171543_create_statixite_sites.rb