FogBugz #42: Tabellen Contacts, Mails und Phones anlegen.
This commit is contained in:
parent
37883e0846
commit
7baa9f0d81
4 changed files with 36 additions and 0 deletions
7
db/migrate/20110502213910_create_contacts.rb
Normal file
7
db/migrate/20110502213910_create_contacts.rb
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
class CreateContacts < ActiveRecord::Migration
|
||||
def self.up
|
||||
end
|
||||
|
||||
def self.down
|
||||
end
|
||||
end
|
||||
7
db/migrate/20110502221401_create_mails_for_contacts.rb
Normal file
7
db/migrate/20110502221401_create_mails_for_contacts.rb
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
class CreateMailsForContacts < ActiveRecord::Migration
|
||||
def self.up
|
||||
end
|
||||
|
||||
def self.down
|
||||
end
|
||||
end
|
||||
7
db/migrate/20110502221705_create_phones_for_contacts.rb
Normal file
7
db/migrate/20110502221705_create_phones_for_contacts.rb
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
class CreatePhonesForContacts < ActiveRecord::Migration
|
||||
def self.up
|
||||
end
|
||||
|
||||
def self.down
|
||||
end
|
||||
end
|
||||
15
db/schema.rb
Normal file
15
db/schema.rb
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
# This file is auto-generated from the current state of the database. Instead
|
||||
# of editing this file, please use the migrations feature of Active Record to
|
||||
# incrementally modify your database, and then regenerate this schema definition.
|
||||
#
|
||||
# Note that this schema.rb definition is the authoritative source for your
|
||||
# database schema. If you need to create the application database on another
|
||||
# system, you should be using db:schema:load, not running all the migrations
|
||||
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
||||
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
||||
#
|
||||
# It's strongly recommended to check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(:version => 20110502221705) do
|
||||
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue