Initial commit

This commit is contained in:
2013-04-29 22:55:08 -07:00
commit 067ebd998f
68 changed files with 1593 additions and 0 deletions
@@ -0,0 +1,9 @@
class CreatePayments < ActiveRecord::Migration
def change
create_table :payments do |t|
t.string :profile
t.timestamps
end
end
end
+7
View File
@@ -0,0 +1,7 @@
# This file should contain all the record creation needed to seed the database with its default values.
# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
#
# Examples:
#
# cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
# Mayor.create(name: 'Emanuel', city: cities.first)