mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-25 19:48:48 +01:00
11 lines
304 B
Ruby
11 lines
304 B
Ruby
ActiveRecord::Schema.define(:version => 1) do
|
|
create_table :conversations, :force => true do |t|
|
|
t.column :state_machine, :string
|
|
t.column :subject, :string
|
|
t.column :closed, :boolean
|
|
end
|
|
|
|
create_table :people, :force => true do |t|
|
|
t.column :name, :string
|
|
end
|
|
end
|