mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2024-12-22 23:53:15 +01:00
8 lines
170 B
Ruby
8 lines
170 B
Ruby
class CreateImporters < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :importers do |t|
|
|
t.string :url
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|