mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2024-12-23 16:13:14 +01:00
9 lines
165 B
Ruby
9 lines
165 B
Ruby
|
class CreateImporters < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :importers do |t|
|
||
|
t.string :url
|
||
|
t.timestamps null: false
|
||
|
end
|
||
|
end
|
||
|
end
|