Class: CreateTramwayPartnerOrganizations

Inherits:
Object
  • Object
show all
Defined in:
lib/tramway/partner/generators/templates/create_tramway_partner_organizations.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



4
5
6
7
8
9
10
11
12
13
# File 'lib/tramway/partner/generators/templates/create_tramway_partner_organizations.rb', line 4

def change
  create_table :tramway_partner_organizations do |t|
    t.text :title
    t.text :logo
    t.text :url
    t.text :state, default: :active

    t.timestamps
  end
end