mirror of
https://github.com/wahyd4/ocelots.git
synced 2026-08-20 10:26:12 +10:00
11 lines
173 B
Ruby
11 lines
173 B
Ruby
class CreateTeams < ActiveRecord::Migration
|
|
def change
|
|
create_table :teams do |t|
|
|
t.string :name
|
|
t.text :description
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|