Changed default port and added migration tasks

This commit is contained in:
Godwin
2014-05-26 18:01:28 -06:00
parent 8caad2a009
commit 87fbd50af1
15 changed files with 292 additions and 22 deletions
@@ -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