Page Menu
Home
Musing Studio
Search
Configure Global Search
Log In
Files
F10668961
drivers.go
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
drivers.go
View Options
/*
* Copyright © 2019 A Bunch Tell LLC.
*
* This file is part of WriteFreely.
*
* WriteFreely is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/
package
migrations
import
(
"fmt"
)
// TODO: use now() from writefreely pkg
func
(
db
*
datastore
)
now
()
string
{
if
db
.
driverName
==
driverSQLite
{
return
"strftime('%Y-%m-%d %H:%M:%S','now')"
}
return
"NOW()"
}
func
(
db
*
datastore
)
typeInt
()
string
{
if
db
.
driverName
==
driverSQLite
{
return
"INTEGER"
}
return
"INT"
}
func
(
db
*
datastore
)
typeSmallInt
()
string
{
if
db
.
driverName
==
driverSQLite
{
return
"INTEGER"
}
return
"SMALLINT"
}
func
(
db
*
datastore
)
typeText
()
string
{
return
"TEXT"
}
func
(
db
*
datastore
)
typeChar
(
l
int
)
string
{
if
db
.
driverName
==
driverSQLite
{
return
"TEXT"
}
return
fmt
.
Sprintf
(
"CHAR(%d)"
,
l
)
}
func
(
db
*
datastore
)
typeVarChar
(
l
int
)
string
{
if
db
.
driverName
==
driverSQLite
{
return
"TEXT"
}
return
fmt
.
Sprintf
(
"VARCHAR(%d)"
,
l
)
}
func
(
db
*
datastore
)
typeBool
()
string
{
if
db
.
driverName
==
driverSQLite
{
return
"INTEGER"
}
return
"TINYINT(1)"
}
func
(
db
*
datastore
)
typeDateTime
()
string
{
return
"DATETIME"
}
func
(
db
*
datastore
)
collateMultiByte
()
string
{
if
db
.
driverName
==
driverSQLite
{
return
""
}
return
" COLLATE utf8_bin"
}
func
(
db
*
datastore
)
engine
()
string
{
if
db
.
driverName
==
driverSQLite
{
return
""
}
return
" ENGINE = InnoDB"
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, May 15, 12:11 PM (22 h, 55 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3229679
Attached To
rWF WriteFreely
Event Timeline
Log In to Comment