Class: CreateSiteSignups

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/ccs_core_gem/templates/create_site_signups.rb

Class Method Summary collapse

Class Method Details

.downObject



13
14
15
# File 'lib/generators/ccs_core_gem/templates/create_site_signups.rb', line 13

def self.down
  drop_table :site_signups
end

.upObject



2
3
4
5
6
7
8
9
10
11
# File 'lib/generators/ccs_core_gem/templates/create_site_signups.rb', line 2

def self.up
  create_table :site_signups do |t|
    t.string :name
    t.string :email_address
    t.string :requested_url
    t.boolean :active

    t.timestamps
  end
end