FogBugz #42: Tabellen Contacts, Mails und Phones anlegen.

This commit is contained in:
gchq 2011-05-03 23:13:47 +02:00
parent 37883e0846
commit 7baa9f0d81
4 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,7 @@
class CreateContacts < ActiveRecord::Migration
def self.up
end
def self.down
end
end

View file

@ -0,0 +1,7 @@
class CreateMailsForContacts < ActiveRecord::Migration
def self.up
end
def self.down
end
end

View file

@ -0,0 +1,7 @@
class CreatePhonesForContacts < ActiveRecord::Migration
def self.up
end
def self.down
end
end

15
db/schema.rb Normal file
View 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