Class: CreateTramwayProfilesSocialNetworks

Inherits:
Object
  • Object
show all
Defined in:
lib/tramway/profiles/generates/templates/create_tramway_profiles_social_networks.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



4
5
6
7
8
9
10
11
12
13
14
15
# File 'lib/tramway/profiles/generates/templates/create_tramway_profiles_social_networks.rb', line 4

def change
  create_table :tramway_profiles_social_networks do |t|
    t.text :title
    t.text :uid
    t.integer :record_id
    t.text :record_type
    t.text :network_name
    t.text :state, default: :active

    t.timestamps
  end
end