Changed default port and added migration tasks
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
class AddAboutMeToUsers < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :users, :about_me, :text
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,5 @@
|
||||
class AddRoleToUsers < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :users, :role, :string
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,5 @@
|
||||
class AddCoverAttributionIdToOrganizations < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :organizations, :cover_attribution_id, :integer
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,5 @@
|
||||
class AddCoverAttributionNameToOrganizations < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :organizations, :cover_attribution_name, :string
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,5 @@
|
||||
class AddCoverAttributionSrcToOrganizations < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :organizations, :cover_attribution_src, :string
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,5 @@
|
||||
class AddPhoneToOrganizations < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :organizations, :phone, :string
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,5 @@
|
||||
class AddOrganizationStatusIdToOrganizations < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :organizations, :organization_status_id, :integer
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,7 @@
|
||||
class AddCoverAttributionToConferences < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :conferences, :cover_attribution_id, :integer
|
||||
add_column :conferences, :cover_attribution_name, :string
|
||||
add_column :conferences, :cover_attribution_src, :string
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user