forked from bofh/fetsite
12 lines
190 B
Ruby
12 lines
190 B
Ruby
class CreateGremien < ActiveRecord::Migration
|
|
def change
|
|
create_table :gremien do |t|
|
|
t.string :name
|
|
t.text :desc
|
|
t.string :typ
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|