mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2025-01-08 07:22:56 +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
|