forked from bofh/fetsite
13 lines
225 B
Ruby
13 lines
225 B
Ruby
class CreateFetzneditions < ActiveRecord::Migration
|
|
def change
|
|
create_table :fetzneditions do |t|
|
|
t.string :title
|
|
t.text :desc
|
|
t.date :datum
|
|
t.string :datei
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|