From 14af391707b01ef43246d79ffabe42738ca636f4 Mon Sep 17 00:00:00 2001 From: AntonioTerceiro Date: Tue, 31 Jul 2007 13:23:22 +0000 Subject: [PATCH] git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@285 3f533792-8f58-4932-b0fe-aaf55b0a4547 --- db/migrate/002_create_profiles.rb | 32 -------------------------------- 1 file changed, 0 insertions(+), 32 deletions(-) delete mode 100644 db/migrate/002_create_profiles.rb diff --git a/db/migrate/002_create_profiles.rb b/db/migrate/002_create_profiles.rb deleted file mode 100644 index e6019dc..0000000 --- a/db/migrate/002_create_profiles.rb +++ /dev/null @@ -1,32 +0,0 @@ -class CreateProfiles < ActiveRecord::Migration - def self.up - create_table :profiles do |t| - t.column :name, :string - t.column :type, :string - t.column :identifier, :string - t.column :virtual_community_id, :integer - t.column :flexible_template_template, :string, :default => "default" - t.column :flexible_template_theme, :string, :default => "default" - t.column :flexible_template_icon_theme, :string, :default => "default" - t.column :active, :boolean, :default => false - - #person fields - t.column :user_id, :integer - - #enterprise fields - t.column :address, :string - t.column :contact_phone, :string - t.column :contact_person, :string - t.column :acronym, :string - t.column :foundation_year, :integer, :limit => 4 - t.column :legal_form, :string - t.column :economic_activity, :string - t.column :management_information, :string - - end - end - - def self.down - drop_table :profiles - end -end -- libgit2 0.21.2