beginning of osm on rails

This commit is contained in:
Steve Coast 2006-07-28 21:41:39 +00:00
commit 06f3473d1c
28 changed files with 6015 additions and 0 deletions

View file

@ -0,0 +1,11 @@
class CreateUsers < ActiveRecord::Migration
def self.up
create_table :users do |t|
# t.column :name, :string
end
end
def self.down
drop_table :users
end
end

View file

@ -0,0 +1,11 @@
class CreateTraces < ActiveRecord::Migration
def self.up
create_table :traces do |t|
# t.column :name, :string
end
end
def self.down
drop_table :traces
end
end

View file

@ -0,0 +1,11 @@
class CreateTracePoints < ActiveRecord::Migration
def self.up
create_table :trace_points do |t|
# t.column :name, :string
end
end
def self.down
drop_table :trace_points
end
end